home *** CD-ROM | disk | FTP | other *** search
-
- ASSIGN S6 "ATDT9565777!" ; Change to your local PC-Pursuit number
- ASSIGN S7 "1234567"" ; Change to your Password
- ASSIGN S8 "YOURMAMMA" ; Change to your ID
- ASSIGN S9 "12" ; Change to your Baud rate 12=1200, 3=300
- ; Don't foget to leave the "!" in line 1 (S6)
-
- SET CR_IN CR ; Make sure there are no extra LF's in menu
- CLEAR ; Clear the screen
-
- LOCATE 1,0 ; Locate the cursor at Line 1, col 0
-
- CLEAR ; Clear the screen
- SET PARITY EVEN ; Set Paramaters for Telenet
- SET DATABITS 7
- MESSAGE "DIALING PCP" ; Let 'em know what's happening
- LOCATE 0,12 ; Position the cursor
- MESSAGE S1 ; Include the City in the message
-
-
- TRANSMIT S6 ; Call local Telenet Number (stored in S6)
- WAITFOR "CONNECT" 15 ; Wait for 15 seconds for "CONNECT"
-
- IF NOT WAITFOR ; If "CONNECT" isn't found
- CLEAR ; clear the screen
- HANGUP ; Hang up the phone
- MESSAGE "PCP TELENET IS BUSY. REDIALING..."
- GOTO L2 ; Loop to the beginning.
- ENDIF
-
-
- PAUSE 2 ; If "CONNECT" is found, Pause 2 seconds
- TRANSMIT "^m^m" ; Get Telenet's attention
- WAITFOR "=" ; Wait for "TERMINAL=" prompt
- TRANSMIT "D1!" ; Transmit Terminal type
- WAITFOR "@" ; Wait for Telenet's Prompt
- CLEAR ; Clear the screen
- LOCATE 1,0 ; Re-position the cursor
- EXECUTE "INTRO.CMD" ; Call the next command file